home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / newmat03.txt < prev    next >
Text File  |  1993-07-25  |  683b  |  14 lines

  1. An experimental matrix package in C++.  It supports matrix types:
  2. Matrix, UpperTriangularMatrix, LowerTriangularMatrix, DiagonalMatrix,
  3. SymmetricMatrix, RowVector, ColumnVector. Only one element type (float
  4. or double) is supported.
  5.  
  6. The package includes the operations *, +, -, (defined as operators)
  7. inverse, transpose, conversion between types, submatrix, determinant,
  8. Cholesky decomposition, Householder triangularisation, singular value
  9. decomposition, eigenvalues of a symmetric matrix, sorting, fast fourier
  10. transform, printing and an interface with "Numerical Recipes in C".
  11.  
  12. It is intended for matrices in the range 4 x 4 to about 90 x 90 (125
  13. x 125 for triangular matrices).
  14.